home *** CD-ROM | disk | FTP | other *** search
/ AOL File Library: 2,801 to 2,900 / aol-file-protocol-4400-2801-to-2900.zip / AOLDLs / C++ Files Library / 3D & Offscreen for MacApp 3 / 3D & Offscreen Sample.sea / 3D & Offscreen Sample / TSquareWindow.h < prev    next >
Text File  |  1993-05-06  |  2KB  |  60 lines

  1. /*************************************************************************
  2.  
  3.         File: TSquareWindow.h
  4.  
  5.         C O P Y R I G H T    N O T I C E
  6.  
  7.      Copyright ⌐ 1989, 1990, 1991, 1992 Siemens Gammasonics, Inc.
  8.         All Rights Reserved.
  9.         No portions of this source code or the resulting compiled
  10.         program may be used without express written consent and liscensing
  11.         by Siemens Gammasonics, Inc.
  12.  
  13.  
  14.         D E S C R I P T I O N
  15.  
  16.  
  17.         Classes Defined Here:
  18.  
  19.              Ñ
  20.  
  21.  
  22.         Change History
  23.  
  24.         Rev 1    Fri, Apr 23, 1993 @ 1:40 PM        Hanig
  25.             Creation
  26.  
  27.  *************************************************************************/
  28. /*************************************************************************/
  29. #ifndef __TSquareWindow__
  30. #define __TSquareWindow__
  31.  
  32. /*************************************************************************/
  33. /*                            Include Files                                 */
  34. /*************************************************************************/
  35. #ifndef        __UWINDOW__
  36. #include    <UWindow.h>
  37. #endif
  38.  
  39. /*************************************************************************/
  40. /*                                Constants                                     */
  41. /*************************************************************************/
  42.  
  43. /*************************************************************************/
  44. /*                           Class Declaration                             */
  45. /*************************************************************************/
  46.  
  47. class TSquareWindow : public TWindow
  48. {
  49.     public:
  50.         TSquareWindow(void);
  51.  
  52.     public:
  53.                 
  54.         virtual pascal void Resize(const VPoint& newSize, Boolean invalidate);
  55. };
  56.  
  57. /*************************************************************************/
  58. #endif
  59. /*************************************************************************/
  60.